home *** CD-ROM | disk | FTP | other *** search
/ Champak 120 / Vol 120.iso / games / tobby_ur.swf / scripts / frame_20 / DoAction.as
Encoding:
Text File  |  2010-11-09  |  252 b   |  16 lines

  1. function randomInt(maxNum)
  2. {
  3.    var rndNum = Math.random() * maxNum;
  4.    if(rndNum == 0)
  5.    {
  6.       rndNum = 1;
  7.    }
  8.    else
  9.    {
  10.       rndNum = Math.ceil(rndNum);
  11.    }
  12.    return rndNum;
  13. }
  14. this.debugMode = false;
  15. this.KeyPlayFlg = false;
  16.